body, html {
  padding: 0;
  margin: 0;
}
body * {
  box-sizing: border-box;
}

@font-face {
  font-family: 'WalkwayBlack';
  src: url('fonts/walkway/Walkway_Black.ttf') format('truetype');
}
@font-face {
  font-family: 'Aller_Rg';
  src: url('fonts/aller/Aller_Rg.ttf') format('truetype');
}
@font-face {
  font-family: 'Aller_Bd';
  src: url('fonts/aller/Aller_Bd.ttf') format('truetype');
}

/*********************
1. GENERAL
*********************/
p a {
  color: black !important;
  text-decoration: none;
  border-bottom: 1px solid #e5150a;
}
#header {
/*  position: fixed;
  top: 0;
  left: 0;*/
  float: left;
  width: 100%;
  background: white;
  /*background: #d2d2d2;*/
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
}
.container {
  width: 98vw;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 0;
}
#header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  flex: 0 0 28.4%;
  padding: 20px 115px 20px 13px;
}
.site-logo img {
  float: left;
  /*width: 100%;*/
}

.menu-wrapper {
  flex: 0 0 71.6%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
ul.main-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
ul.main-menu li {
  position: relative;
  flex: 0 0 20%;
  list-style: none;
  text-align: center;
  padding-right: 25px;
}
ul.main-menu li a {
  font-family: Aller_Rg;
  font-size: 18px;
  font-weight: 100;
  text-decoration: none;
  color: #4e4d4e;
  transition: .3s all ease;
  text-transform: capitalize;
}
ul.main-menu li a:hover {
  color: #e51d5a;
}
ul.submenu {
  /*display: none;*/
  position: absolute;
  top: 50px;
  left: -25%;
  padding: 10px 15px 30px 15px;
  margin: 0;
  width: 140%;
  text-align: center;
  background: white;
  box-shadow: 0 0 10px #969696;
  z-index: 999999999;
}
ul.submenu li {
  list-style: none;
}
ul.submenu li a {
  color: #000;
  line-height: 30px;
  transition: .3s all ease;
  text-align: left;
  float: left;
  width: 100%;
  padding-left: 30px;
  font-size: 16px;
}
ul.submenu li:hover > a {
  color: #e51d5a;
}
ul.submenu li.gi-strong a {
  font-family: Aller_Bd;
}
.submenu,
.submenu li {
  opacity: 0;
  visibility: hidden;
  transition: .3s all ease;
  float: left;
  width: 100%;
}
ul.submenu li:first-child {
  margin-top: 0 !important;
}
.menu-item-strong a {
	font-weight: bold !important;
	font-family: Aller_Bd !important;
  font-size: 17px !important;
  padding-left: 20px !important;
}
.menu-item-strong {
  margin-top: 20px;
}
.menu-item-strong:first-child {
  margin-top: 0 !important;
}
.arrow-up {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 30px solid white;
}
.triangle-with-shadow {
  width: 100px;
  height: 41px;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 -1px 10px -17px rgba(35, 35, 35, 0.5);
  right: 0;
  left: 0;
  top: -34px;
  margin: auto;
  transform: scale(0.7);
}
.triangle-with-shadow:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  transform: rotate(45deg);
  top: 16px;
  left: 25px;
  box-shadow: -1px -1px 10px -2px rgba(0, 0, 0, 0.5);
  pointer-events: all !important;
}

.main-menu > li:hover .submenu,
.main-menu > li:hover .submenu li {
  opacity: 1;
  visibility: visible;
}   

/* Scroll header */
.scroll-menu {
  display: none;
  position: fixed !important;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7) !important;
}
.scroll-menu .container  {
  padding: 0 0 0 0;
  /*background-color: #f7f5f3;*/
}
.scroll-menu .site-logo {
  padding:  5px 115px 5px 13px;
}
.scroll-menu .site-logo a img {
  height: 57.19px;
  width: 57.19px;
}

/* Mobile menu */
.hamburger {
  display: none;
  width: 30px;
  height: 30px;
  /*background: url('img/hamburger_old.png');*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.close-mm {
  background: url('img/close.png');
  width: 20px;
  height: 20px;
  background-size: cover;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.mobile-menu {
  display: none;
position: absolute;
    overflow: scroll;
    min-height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  padding-top: 50px;
}
.mobile-menu ul {
  padding: 0;
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}
.mobile-menu ul li {
  list-style: none;
  text-align: center;
}
.mobile-menu ul li a {
  font-family: Aller_Rg;
  text-decoration: none;
  color: black;
  font-size: 17px;
  padding: 10px 0;
  float: left;
}

/* Footer */
#footer {
  float: left;
  width: 100%;
}
#footer .container {
  border-top: 5px solid #e51d5a;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 30px;
}
.footer-box {
  flex: 0 0 20%;
  padding-bottom: 20px;
}
.footer-box ul {
  width: 100%;
  padding: 0 30px 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-box ul li {
  position: relative;
  list-style: none;
  font-family: Aller_Rg;
  font-size: 16px;
  padding-bottom: 12px;
  z-index: 1;
  font-weight: 100;
}
.footer-box ul li a {
  float: left;
  position: relative;
  text-decoration: none;
  color: #4e4d4e;
  transition: .5s all ease;
  text-transform: capitalize;
}
.footer-box ul li a:hover {
  color: #e51d5a !important;
}
.footer-box ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: black;
}
.footer-box ul li a:hover > .footer-box ul li a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.footer-box .submenu {
  display: none !important;
}

/* Slider */
.rsg-slick .slick-list {
  width: 99vw !important;
  overflow: hidden !important;
}
.slick-track {
	float: left;
}
.slick-slide {
	outline: transparent !important;
}
.gi-slick-nav {
	position: absolute;
  top: 500px !important;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.gi-slick-nav .slick-nav {
  font-family: Aller_Rg;
  font-size: 19px;
  color: white;
  padding: 0 30px 40px 30px; 
  cursor: pointer;
}
.gi-slick-nav .active {
	background: url('img/arrow-01.png');
	background-size: 100px;
  background-position: bottom center;
  background-repeat: no-repeat;
}
/* Sections and content */
section,
.gi-section {
  float: left;
  width: 100%;
}
section .container,
.gi-section .container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
#heading {
  margin-top: 110px;
}
#heading .container {
  /*background-position: top -104px center;*/
}
#heading .heading {
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 450px;
  position: relative;
  margin: 0.5%;
}
#heading .heading::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
#heading .heading * {
  text-align: center;
}
#heading .heading .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 150;
}
#heading .heading .title {
  width: 100%;
/*  max-width: 615px;
font-size: 36px;*/
max-width:  800px;
font-size: 32px;
font-family: WalkwayBlack;
color: white;
/*padding-top: 24px;*/
line-height: 42px;
letter-spacing: 3px;
}
#heading .heading .description {
  font-family: Aller_Rg;
  font-size: 17px;
  color: white;
  width: 100%;
  max-width: 590px;
  text-align: center;
  margin-top: 20px;
}
#heading .heading .description span {
  color: #e51d5a;
}
#heading .heading a {
  color: white;
  text-decoration: none;
  font-family: Aller_Rg;
  font-size: 18px;
  margin-bottom: -20px;
  padding-top: 20px;
  position: relative;
  transition: .5s all ease;
}
#heading .heading a:hover {
  color: #e51d5a;
}

/* Grid */
#grid.downloads .grid-row {
  /*padding: 0 115px;*/
}
#grid.downloads .grid-oof {
	padding: 0 115px;
}
#grid .container {

}
.grid-container {
  /*display: flex;*/
  display: block;
  /*flex-direction: column;*/
  /*justify-content: flex-start;*/
  /*width: calc(100% + 24px);*/
  width: 100%;
  /*margin-left: -12px;*/
}
.royal-ltd-overview .grid-container,
.sustainability .grid-container {
  /*width: calc(100% + 12px);*/
  width: 100%;
  margin-left: 0;
}
.sustainability .grid-container {
  /*margin-left: -10px;*/
}
.sustainability .grid-row {
  align-items: flex-start;
}
.grid-container * {
  color: white;
}
.grid-row {
  /*display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;*/
  display: block;
  float: left;
  width: 100%;
  position: relative;
}
.simple-content .grid-row {
  width: 80%;
  margin: 0 auto;
}

.grid-column {
  /*flex: 0 0 49.5%;*/
  width: 50%;
  float: left;
  position: relative;
  /*margin: 0.5%; DTEST */
/*  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;*/
}

.gi-one {
  display: flex;
  position: relative;
  width: 24%;
  float: left;
  margin: 0.5%;
  background: #d2d2d2;
  background-size: 110%;
  height: 340px;
  min-height: 340px; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background-repeat: no-repeat;
  transition: .5s all ease;
  text-decoration: none !important;
}
.gi-one:hover {
  background-size: 125%;
}
.gi-one::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
.gi-one:hover::after {
  opacity: 0;
}

.gi-two {
  display: flex;
  position: relative;
    width: 49%;
    margin: 0.5%;
    float: left;
  background: #d6d6d6;
  background-size: 110%;
  height: 340px;
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: .5s all ease;
  text-decoration: none !important;
}
.gi-two:hover {
  background-size: 125%;
}
.gi-two.gi-box-quote:hover {
  background-size: 100% !important;
}
.gi-two::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
.gi-two:hover::after  {
  opacity: .5;
}
.gi-box-quote:hover::after {
  opacity: 1 !important;
}
.gi-two-l {
  display: flex;
  position: relative;
  width: 49%;
  margin: 0.5%;
  float: left;
  background: #d6d6d6;
  background-size: 100%;
  height: 450px;
  min-height: 450px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: .5s all ease;
  text-decoration: none !important;
  /* add ff */
  float: left;
  width: 49%;
}
.gi-two-l:hover {
  background-size: 105%;
}
.gi-two-l::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
.gi-two-l:hover::after  {
  opacity: .5;
}
.gi-full {
  display: flex;
  position: relative;
  width: 98%;
  margin: 1%;
  float: left;
  background: #d6d6d6;
  background-size: 100%;
  height: 450px;
  min-height: 450px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: .5s all ease;
}
.gi-full:hover {
  /*background-size: 105%;*/
}
.gi-full::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
.gi-full:hover::after  {
  /*opacity: .5;*/
}
.gi-full-l {
  display: flex;
  position: relative;
  width: 98%;
  margin: 1%;
  float: left;
  background: #d6d6d6;
  background-size: 100%;
  height: calc(900px + 2vh);
  min-height: calc(900px + 2vh);
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: .5s all ease;
}
.gi-full-l:hover {
  /*background-size: 105%;*/
}
.gi-full-l::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
.gi-full-l:hover::after  {
  /*opacity: .5;*/
}
.sustainability .gi-full-l {
  height: calc(864px + 3vh);
  min-height: calc(864px + 3vh);
}


.gi-two-five {
  width: 39%;
  margin: 0.5%;
  float: left;
}
.gi-three-five {
  width: 60%;
  padding: 0.5%;
  float: left;
  display: flex;
  position: relative;
  background: #d6d6d6;
  background-size: 105%;
  margin: 0.5% 0;
  min-height: 410px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: .5s all ease;
  text-decoration: none !important;
}
.gi-three-five.play-video:hover {
  background-size: 110%;
}
.gi-three-five.play-video::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}
.gi-three-five.play-video:hover::after  {
  opacity: .5;
}
.gi-content {
  padding: 70px 150px 70px 50px;
  background: transparent !important;
  align-items: flex-start;
}
.gi-content p {
  font-family: Aller_Rg;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 11px;
  color: #000;
  text-align: left;
  width: 100%;
}
.gi-content p b {
  color: #000;
  font-weight: 'Aller_Bd';
}
.gi-zebra {
  width: 100%;
  flex: 0 0 100%;
  margin: 0.5% 0;
  height: 520px;
  min-height: 520px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gi-slick-description {
  display: none !important;
}
/* Gi Mods */
.gi-dbw {
  color: #000;
  padding: 50px 8% 50px 8%;
}
.gi-dbw * {
  color: #000;
  line-height: 1.4;
}
.gi-dbw-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent !important;
  min-height: auto;
  text-align: left;
  padding-top: 38px;
}
.gi-dbw-content-title {
  font-family: Aller_Bd;
  font-size: 26px;
  color: #000;
  max-width: 620px;
  width: 100%;
  padding-bottom: 20px;
}
.gi-dbw-content p {
  font-family: Aller_Rg;
  font-size: 17px;
  color: #000;
  max-width: 620px;
  width: 100%;
  line-height: 1.4;
}
.gi-dbw-content ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.gi-dbw-content ul li {
  font-family: Aller_Rg;
  font-size: 17px;
  color: #000;
  line-height: 1.8;
}
.gi-dbw-content ul li span {
  font-weight: Aller_Bd;
  color: #000;
}
.gi-dbw .gi-title {
  font-family: Aller_Bd;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
}
.gi-video {
/*  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;*/
  /*margin-top: 10px;*/
  width: 70px;
  height: 62px;
  min-height: 62px;
  background: url(img/video-01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.litebox-overlay {
  z-index: 99999;
}
.gi-quote {
  position: relative;
  width: 60%;
  padding: 50px 0;
  text-align: center;
  font-family: WalkwayBlack;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 30px;
  z-index: 1;
}
.gi-quote::before {
  position: absolute;
  /*left: -25px;*/
  left:   25px;
  top: 0;
  width: 30px;
  height: 24px;
  background: url('img/quote-before-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: " ";
  z-index: 1;
}
.gi-quote::after {
  position: absolute;
  /*right: -25px;*/
  right:  25px;
  bottom: 0;
  width: 30px;
  height: 24px;
  background: url('img/quote-after-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: " ";
  z-index: 1;
}
.dark-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dark-quote .gi-quote {
  position: relative;
  width: 61%;
  padding: 70px 0;
  margin: 50px 0;
  text-align: left;
  font-family: WalkwayBlack;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.1;
  z-index: 1;
  color: #000;
}
.dark-quote .gi-quote::before {
  background: url('img/quote-dark-before-01.png');
  background-size: 100% !important;
  left: 4px;
}
.dark-quote .gi-quote::after {
  background: url('img/quote-dark-after-01.png');
  background-size: 100% !important;
  right: 4px;
}
.gi-full.litebox {
  text-decoration: none !important;
}
.gi-title {
  font-family: WalkwayBlack;
  font-size: 26px;
  letter-spacing: 2.1px;
  padding-bottom: 6px;
  z-index: 1;
  text-decoration: none !important;
}
.gi-description {
  font-family: Aller_Rg;
  font-size: 17px;
  padding-bottom: 11px;
  z-index: 1;
}
.gi-logo {
  height: 150px;
  min-height: 150px;
  margin-top: -50px;
  z-index: 1;
}
.gi-logo-center {
  height: 150px;
  min-height: 150px;
  z-index: 1; 
}
.gi-link {
  font-family: Aller_Rg;
  font-size: 16px;
  text-decoration: none;
  z-index: 1;
  position: relative;
  transition: .3s all ease;
}
.gi-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #e51d5a;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: white;
}
.gi-one:hover > .gi-link:before,
.gi-two:hover > .gi-link:before,
.gi-two-l:hover > .gi-link:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.gi-one:hover > .gi-link,
.gi-two:hover > .gi-link,
.gi-two-l:hover > .gi-link {
  color: #e51d5a;
}
.gi-content-mod {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 20px 20%;
  background-size: cover;
}
.gi-full.gi-content-mod {
  padding: 20px 27% 20px 20%;
}
.gi-full-l.gi-content-mod {
  /*padding: 10% 20%;*/
  padding: 10% 17%;
  justify-content: flex-end;
}
.gi-content-mod .gi-title {
  padding-bottom: 15px;
}
.gi-content-mod .gi-description {
  font-size: 15px;
  line-height: 1.4;
}

/* Video */
.play-video {
  cursor: pointer;
}
.fullscreen-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  background: white;
}
.fullscreen-video iframe {
  width: 100vw !important;
  height: 100vh !important;
}
.fullscreen-video .close-player {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 30px;
  height: 30px;
  background: url('img/close-button.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

.gi-flex-start {
  align-items: flex-start;
}

/* GI Downloads */
.downloads .grid-row {
  padding: 50px 0;
  width: 100%;
}
.downloads .grid-row:nth-child(2) {
  padding-top: 0;
}
.gi-downloads-box-one {
  background: transparent;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 410px;
}
.gi-downloads-box-one h2 {
  font-family: Aller_Bd;
  font-size: 30px;
  color: #000;
}
.gi-downloads-box-two {
  border-bottom: 1px solid #e51d5a !important;
  background: transparent !important;
  color: #000;
}
.grid-row:nth-child(2) > .gi-downloads-box-two {
  border-bottom: none !important;
}
.gi-downloads-section {
  font-family:  Aller_Bd;
  font-size: 22px;
  color: #000;
  display:  flex;
  align-items: flex-start;
  justify-content: flex-start;
  /*flex: 0 0 30%;*/
  float: left;
  width: 30%;
  text-align: left;
  align-self: flex-start;
  padding-top: 9px;
}
.gi-downloads-section + .gi-downloads-flex {
  /*flex: 0 0 65%;*/
  width: 65%;
  float: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.gi-downloads-flex {
/*  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;*/
  display: block;
  float: left;
}
.gi-downloads-flex .grid-row {
  padding: 0 0 0 0;
}
.gi-downloads-item {
  flex: 0 0 50%;
  padding: 10px 30px 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.gi-downloads-item * {
  color: #000;
  text-align: left !important;
  font-size: 18px;
}
.gi-downloads-item h4 {
  padding: 0 0 0 0;
  margin: 0 0 5px 0;
  font-family: Aller_Bd;
}
.gi-downloads-item p {
  padding: 0 0 0 0;
  margin: 0 0 20px 0;
  font-family: Aller_Rg;
  font-size: 16px;
}
.gi-downloads-item a {
  padding: 0 0 0 0;
  margin: 0 0 5px 0;
  font-family: Aller_Bd;
  text-decoration: none;
  border-bottom: 1px solid #e51d5a;
  transition: .3s all ease;
}
.gi-downloads-item a:hover {
  color: #e51d5a;
}
.text-link {
  color: black;
  border-bottom: 1px solid #e51d5a;
  text-decoration: none;
}

.gi-shadow::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 60%,rgba(0, 0, 0, 0.8) 99%,rgba(0, 0, 0, 0.95) 100%);
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s all ease;
  opacity: 1;
}

/* Webber & OTT Ag - Single */
.webber-ottag-single {

}
.webber-ottag-single .gi-title {
  font-family: WalkwayBlack !important;
  font-size: 36px !important;
  padding-bottom: 20px;
}
.webber-ottag-single .gi-description {
  padding-bottom: 35px;
}
.gi-pink-link {
  font-family: Aller_Rg;
  color: #e51d5a;
  font-size: 18px;
  text-decoration: none !important;
}

/* Loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: url(img/loader.gif) center no-repeat #fff;
}

/* Contacts */
.grid-contancts {

}
.grid-contacts .container {
  /*padding: 0 115px;*/
}
.grid-contacts .grid-row {
  padding: 25px 0;
}
.grid-contacts .grid-row:first-child {
  padding-top: 50px;
}
.grid-contacts .grid-row:last-child {
  padding-top: 20px;
  padding-bottom: 200px;
}
.grid-contacts .gi-two {
  min-height: auto !important;
}
.gi-two.gi-contacts {
  width: 49%;
}
.gi-contacts {
  background: transparent !important;
  color: #000;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto !important;
}
.gi-contacts:first-child {
  padding-right: 0;
}
.gi-contacts:nth-child(2) {
  padding-left: 0;
}
.gi-contacts::after {
  content: "" !important;
  background: transparent !important;
}
.gi-contacts * {
  color: #000;
  text-align: left;
}
.gi-contacts h2 {
  font-family: Aller_Bd;
  font-size: 30px;
  color: #000; 
  padding-bottom: 30px;
}
.gi-contacts-flex {
  position: relative;
/*  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;*/
  width: 100%;
  float: left;
  font-size: 18px;
  z-index: 1;
}
.gi-contact-box {
  padding-right: 40px;
  width: 50%;
  box-sizing: border-box;
  float: left;
}
.gi-contact-box-name {
  font-family: Aller_Bd;
}
.gi-contact-box-title {
  font-family: Aller_Rg;
  padding-bottom: 15px;
}
.gi-contact-info {
  font-family: Aller_Rg;
  font-size: 16px;
}
.gi-contact-info span {
  color: #e51d5a;
}
.gi-contacts-info a {
  cursor: pointer;
  pointer-events: all !important;
}
.gi-slick-nav-prev {
  display: none;
}
.gi-slick-nav-next {
  display: none;
}

@media screen and (max-width: 1440px) {
  .container {
    margin: 0 1vw;
    float: left;
  }
  .grid .container {
    width: 100%;
    margin-left: 0;
  }
  #grid.downloads .grid-row {
    padding: 0 5%;
  }
  #grid.grid-contacts .container {
    /*padding: 0 5%;*/
  }
  .gi-contacts {
    padding: 0 5%;
  }
  .gi-one,
  .gi-two {
    height: 24vw;
    min-height: 25vw;
  }
  .gi-two-l {
    height: 30vw;
    min-height: 30vw;
  }
  .gi-full {
    height: 30vw;
    min-height: 30vw;
  }
  .gi-full-l {
    height: 61vw;
    min-height: 61vw;
  }
  #heading .container {
    background-size: cover !important;
  }
  .grid-contacts .grid-row {
    align-items: flex-start;
  }
  .gi-contacts-flex {
    /*flex-direction: column;*/
  }
  .gi-contact-box {
    /*padding: 10px 0;*/
  }
  .gi-contact-box:first-child {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 961px) and (max-width: 1399px) {
	.gi-downloads-section {
		font-size: 16px;
	}
	.gi-downloads-item h4 {
		font-size: 16px;
	}
	.gi-downloads-item p {
		font-size: 14px;
	}
	.gi-downloads-item a {
		font-size: 16px;
	}
}
@media screen and (max-width: 960px) {
  .site-logo {
    flex: 0 0 60%;
    padding: 10px 10px;
  }
  .site-logo img {
    /*max-width: 250px;*/
  }
  .menu-wrapper {
    flex: 0 0 15%;
  }
  ul.main-menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  #heading .heading {
    background-size: cover;
    background-position: center center;
    height: 60vh;
    min-height: 60vh;
  }
  .grid-row {
    flex-direction: column;
  }
  .gi-one,
  .gi-two {
    flex: 0 0 98%;
    width: 98%;
    margin: 1%;
    height: 340px;
    min-height: 340px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .gi-two-l {
    flex: 0 0 98%;
    width: 98%;
    margin: 1%;
    height: 340px;
    min-height: 340px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .gi-full {
    flex: 0 0 98%;
    width: 98%;
    margin: 1%;
    height: 340px;
    min-height: 340px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .gi-full-l {
    flex: 0 0 98%;
    width: 98%;
    margin: 1%;
    height: 680px;
    min-height: 680px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .gi-full.gi-content-mod {
    padding: 15%;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
  }
  .gi-full-l.gi-content-mod {
    padding: 20px 20px;
  }
  .gi-three-five {
    flex: 0 0 100%;
    width: 100%;
  }
  .gi-content {
    padding: 10px 10px 10px 10px;
  }
  .gi-logo {
    height: 100px;
    min-height: 100px;
  }
  #footer .container {
    flex-direction: column;
  }
  .simple-content .grid-row {
    width: 96%;
    margin: 0 auto;
  }
  /* Downloads */
  #grid.downloads .container {
    padding: 0 10px;
  }
  .gi-downloads-box-one {
    min-height: auto;
    width: 100%;
    padding: 0 30px;
  }
  /* Dbw */
  .gi-dbw {
    padding: 10%;
    text-align: center;
  }
  .gi-three-five {
    min-height: 300px;
  }
  .gi-zebra {
    height: 300px;
    min-height: 300px;
  }
  .dark-quote .gi-quote {
    text-align: center;
    padding: 15% 0;
  }
  .gi-dbw-content {
    padding: 10%;
    text-align: center;
  }
  .gi-dbw-content ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .gi-slick-nav {
    top: 68vh;
  }
  .gi-two.gi-contacts {
    width: 100%;
  }
  .gi-two.gi-contacts:last-child {
    padding-top: 50px;
  }
  .gi-contacts:first-child {
    padding-right: 5%;
  }
  .gi-contacts:nth-child(2) { 
    padding-left: 5%;
  }
  .grid-contacts .grid-row {
    padding-top: 0;
  }
  .grid-contacts .grid-row:first-child {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .gi-slick-nav {
      top: 65vh !important;
  }
  .gi-one,
  .gi-two,
  .gi-two-five,
  .gi-three-five {
    width: 100%;
    float: left;
  }
  #grid.downloads .grid-row {
    padding: 0 0 0 0;
  }
  .gi-downloads-box-one {
    padding: 20px 20px;
  }
  .gi-downloads-section,
  .gi-downloads-section + .gi-downloads-flex {
    width: 100%;
    float: left;
    padding: 20px 0;
  }
  .gi-downloads-item {
    width: 100%;
    float: left;
    padding: 0 0 0 0;
    flex: 0 0 100%;
  }
  ul.submenu {
    display: block;
    position: relative;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    width: 100%;
    float: left;
    top: 0;
    left: 0;
    padding: 0 0 0 15px !important;
    margin: -5px 0 10px 0 !important; 
  }
  .menu-item-strong {
    margin-top: 10px;
}
  ul.submenu li a {
  }
  .mobile-menu {
    padding-top: 30px !important;
  }
  .mobile-menu ul {
    width: 100%;
    padding: 0 10%;
    background: white;
    /*margin-top: -10px;*/
  }
  .mobile-menu ul * {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .mobile-menu ul li a {
    padding: 5px 0;
  }
  .triangle-with-shadow {
    display: none;
  }
  ul.submenu li {
    opacity: 1;
    visibility: visible;
  }
  ul.submenu li a {
    padding: 2px !important;
  }
}
@media screen and (max-width: 767px) { 
  ul.submenu {
    display: block;
    position: relative;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    width: 100%;
    float: left;
    top: 0;
    left: 0;
    padding: 0 0 0 15px !important;
    margin: -5px 0 10px 0 !important; 
  }
  .menu-item-strong {
    margin-top: 10px;
}
  ul.submenu li a {
  }
  .mobile-menu {
    padding-top: 30px !important;
  }
  .mobile-menu ul {
    width: 100%;
    padding: 0 10%;
    background: white;
    /*margin-top: -10px;*/
  }
  .mobile-menu ul * {
    font-size: 11px !important;
    line-height: 17px !important;
  }
  .mobile-menu ul li a {
    padding: 5px 0;
  }
  .triangle-with-shadow {
    display: none;
  }
  ul.submenu li {
    opacity: 1;
    visibility: visible;
  }
  ul.submenu li a {
    padding: 2px !important;
  }
  .gi-downloads-flex {
    flex-direction: column;
  }
  #heading {
    margin-top: 70px;
  }
  #heading .heading {
    height: 65vh !important;
  }
  #heading .heading * {
    padding: 0 10px;
  }
  #heading .heading .title {
    font-size: 24px;
    line-height: 30px;
  }
  .gi-slick-nav {
    display: flex !important;
    /*top: 65vh !important;*/
    /*display: block !important;*/
    width: 100%;
    float: left;
    /*display: none !important;*/
    position: relative !important;
    top: 0 !important;
    padding: 20px 0 !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .gi-slick-description {
    display: none !important;
    color: white;
    font-size: 14px;
    width: 100%;
    font-style: italic;
    padding: 20px;
    top: 68vh;
    float: left;
    position: absolute;
    text-align: center;
    font-family: Aller_Rg;
  }
  .gi-slick-nav .slick-nav {
    font-size: 15px;
    padding: 8px 8px;
    text-align: center;
    width: 15px;
    height: 15px;
    background: #e9e8e8;
    color: transparent;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 10px;
  }
  .gi-slick-nav .active {
    background: #e51d5a;
  }
  .gi-slick-nav-next {
    width: 24px;
    height: 32px;
    display: block;
    background: url('img/slick_nav_next.png');
    background-size: cover;
    z-index: 99999;
    position: absolute;
    right: 10px;
  }
  .gi-slick-nav-prev {
    width: 24px;
    height: 32px;
    display: block;
    background: url('img/slick_nav_prev.png');
    background-size: cover;
    z-index: 99999;
    position: absolute;
    left: 10px;
  }
  .gi-quote {
    width: 90% !important;
    font-size: 20px !important;
    line-height: 24px !important;
  }
  .gi-three-five {
    background-size: cover;
  }
  .gi-description {
    font-size: 15px !important;
  }
  .gi-one,
  .gi-two,
  .gi-two-l,
  .gi-two-five,
  .gi-three-five,
  .grid-column,
  .gi-full,
  .gi-full-l {
    width: 99% !important;
    float: left;
    background-size: cover !important;
  }
  .gi-full-l.gi-content-mod {
    padding: 15% !important;
    height: auto !important;
    min-height: auto !important;
  }
  #grid.downloads .grid-row {
    padding: 0 0 0 0;
  }
  .gi-downloads-box-one {
    padding: 20px 20px;
  }
  .gi-downloads-section,
  .gi-downloads-section + .gi-downloads-flex {
    width: 100%;
    float: left;
    padding: 20px 0;
  }
  .gi-downloads-item {
    width: 100%;
    float: left;
    padding: 0 0 0 0;
    flex: 0 0 100%;
  }
  #grid.downloads .container {
    padding: 0 0 0 0;
  }
/*  .slick-next {
    position: absolute;
    top: 560px;
    right: 0;
    z-index: 99999;
  }
  .slick-prev {
    position: absolute;
    top: 560px;
    left: 0;
    z-index: 99999;
  }*/
}